home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 January / Disc 3 / Amethyst.iso / live / usr / share / vim / vim60 / indent / java.vim < prev    next >
Encoding:
Text File  |  2002-06-19  |  364 b   |  17 lines

  1. " Vim indent file
  2. " Language:    Java
  3. " Maintainer:    Bram Moolenaar <Bram@vim.org>
  4. " Last Change:    2001 Jun 18
  5.  
  6. " Only load this indent file when no other was loaded.
  7. if exists("b:did_indent")
  8.    finish
  9. endif
  10. let b:did_indent = 1
  11.  
  12. " Java is just like C, use the built-in C indenting.
  13. setlocal cindent
  14.  
  15. " Indent Java anonymous classes correctly.
  16. setlocal cinoptions+=j1
  17.